implicit type coercion - definizione. Che cos'è implicit type coercion
Diclib.com
Dizionario in linea

Cosa (chi) è implicit type coercion - definizione

TYPE SYSTEM WHERE TYPES ARE ASSOCIATED WITH VALUES AND NOT VARIABLES
Implicit typing; Latent type

explicit type conversion         
CHANGING AN EXPRESSION FROM ONE DATA TYPE TO ANOTHER
Explicit type conversion; Typecasting (programming); Typecast (programming); Cast (computer science); Type conversions; Implicit coercion; Cast (computer programming); Implicit type conversion; Type coercion; Const cast; Implicit conversion; Upcasting; Type promotion; Type Conversion; Typecasting (hacking); Typecasting (computing); Type casting (computer programming); Typecasting (computer programming); Typecasting (computer science); Type casting (computer science); Type casting (computing); Cast (computing); Casting (computing); Casting (computer programming); Casting (computer science); Integer promotion; Type juggling; Implicit type casting; Explicit type casting
<programming> (Or "cast" in C and elsewhere). A programming construct (syntax) to specify that an expression's value should be converted to a different type. For example, in C, to convert an integer (usually 32 bits) to a char (usually 8 bits) we might write: int i = 42; char *p = &buf; *p = (char) i; The expression "(char)" (called a "cast") converts i's value to char type. Casts (including this one) are often not strictly necessary, due to automatic coercions performed by the compiler, but can be used to make the conversion obvious and to avoid warning messages. (1999-09-19)
implicit type conversion         
CHANGING AN EXPRESSION FROM ONE DATA TYPE TO ANOTHER
Explicit type conversion; Typecasting (programming); Typecast (programming); Cast (computer science); Type conversions; Implicit coercion; Cast (computer programming); Implicit type conversion; Type coercion; Const cast; Implicit conversion; Upcasting; Type promotion; Type Conversion; Typecasting (hacking); Typecasting (computing); Type casting (computer programming); Typecasting (computer programming); Typecasting (computer science); Type casting (computer science); Type casting (computing); Cast (computing); Casting (computing); Casting (computer programming); Casting (computer science); Integer promotion; Type juggling; Implicit type casting; Explicit type casting
<programming> (Or "coercion") The abilty of some compilers to automatically insert type conversion functions where an expression of one type is used in a context where another type is expected. A common example is coercion of integers to reals so that an expression like sin(1) is compiled as sin(integerToReal(1)) where sin is of type Real -> Real. A coercion is usually performed automatically by the compiler whereas a cast is an explicit type conversion inserted by the programmer. See also subtype. (1997-07-28)
Implicit stereotype         
UNREFLECTED, MISTAKEN ATTRIBUTIONS TO AND DESCRIPTIONS OF SOCIAL GROUPS
User:Psy463 1029/Implicit stereotype; Implicit stereotypes; Unconscious bias; Implicit bias; Explicit stereotype; Unconscious biases; Implicit biases
In social identity theory, an implicit bias or implicit stereotype, is the pre-reflective attribution of particular qualities by an individual to a member of some social out group.

Wikipedia

Latent typing

In computer programming, latent typing refers to a type system where types are associated with values and not variables. An example latently typed language is Scheme. This typically requires run-time type checking and so is commonly used synonymously with dynamic typing.